(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/gadtools.h>
#include <intuition/intuition.h>
struct IntuiMessage * GT_FilterIMsg()
SYNOPSIS
struct IntuiMessage * imsg

LOCATION
In GadToolsBase at offset 17
FUNCTION
Processes an intuition message. Normally, you should not use this function and call GT_GetIMsg() instead. If this functions returns with a value != NULL, you have to call GT_PostFilterIMsg(), when you are done with processing the message. If it return a NULL pointer, you have to ReplyMsg() the message, you passed to GT_FilterIMsg().

INPUTS
imsg
pointer to the intuition message to process
RESULT
Either a pointer to a processed intuition message or NULL, in which case the message had only meaning to gadtools.

NOTES
EXAMPLE
BUGS
SEE ALSO
GT _PostFilterIMsg(), GT _GetIMsg(), intuition.library/ReplyMsg()
INTERNALS
HISTORY
04.04.1997 ldp
Gadtools -> GadTools
25.03.1997 srittau
Initial revision